home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 4 / Amiga Tools 4.iso / tools / wb-enhancement / hboot1 / install_hboot < prev    next >
Text File  |  1996-02-26  |  1KB  |  89 lines

  1. (message "Handy Boot v1.0 Installation  \n"
  2.    "\n"
  3.    "This version of HBoot is FREEWARE !\n\n"
  4.    "<< Keep The Amiga Spirit Alive >>\n\n"
  5.    " Greatings from : \n"
  6.    "\n"
  7.    "       Michael D.P. de Clerck\n"
  8.    "       Increased Development.\n"
  9.    "       August 1995 Rotterdam \n"
  10.    "\n"
  11. )
  12.  
  13.  
  14.  
  15. ; ask where to install HBoot
  16. (set vc-dest
  17.    (askdir
  18.      (prompt "Please select the Directory where you would like to "
  19.              "install HBoot 1.0 and it's files."
  20.              "I won't make a new directory ! "
  21.      )
  22.      (help @askdir-help)
  23.      (default @default-dest)
  24.    )
  25. )
  26. (set @default-dest vc-dest)
  27.  
  28.  
  29. (Set DestDir @default-dest)
  30.  
  31. (Set UserDir
  32.   (tackon DestDir "Users")
  33. )
  34.  
  35.  
  36.  
  37.  
  38.  
  39. (
  40.    (working "Installing HBoot 1.0 Program")
  41.    (copyfiles
  42.      (prompt "")
  43.      (source "")
  44.      (help @copyfiles-help)
  45.      (dest @default-dest)
  46.      (infos)
  47.      (choices "HBoot" "Bootmail" "HBStartup" "HBoot.Guide")
  48.      (confirm)
  49.    )
  50. )
  51.  
  52.  
  53. (
  54.   (working "Copying screen map")
  55.   (copyfiles
  56.     (source "Buttons.Abk")
  57.     (dest @default-dest)
  58.   )
  59. )
  60.  
  61.  
  62. (
  63.   (working "Copying the USer scripts")
  64.   (copyfiles
  65.     (prompt "")
  66.     (help @copyfiles-help)
  67.     (source "Users")
  68.     (dest UserDir)
  69.     (all)
  70.   )
  71. )
  72.  
  73.  
  74.  
  75. (message "Handy Boot v1.0 Installation complete\n"
  76.    "\n"
  77.    "Now add a HBoot: assign in your S:User-startup.\n\n"
  78.  
  79.    "Now reboot or execute the S:user-startup.\n\n"
  80.  
  81.    "HBoot can now be started, see documentation\n"
  82.    "for further support !\n"
  83.    "\n"
  84. )
  85.  
  86.  
  87.  
  88. (exit)
  89.